*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
:root{
    --bluue-color: #031a32;
    --sky-color:#a8dee2;
    --green-color:#1f80b0;
    --blue-color:#0f054c;
    --red-color: #ff3150;
    --yellow-color: #ffc400;
    --section-color: #eff7fa;
    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
body{
    background-color: #f8f9fa;

}

/*start navbar*/
.custom-navbar {
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    color: white;
}
.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1rem;
    margin-right: 20px;
    position: relative;
}
.navbar-nav .nav-link.active {
    color: var(--green-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--green-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: var(--green-color);
}

.navbar-toggler {
    border: none;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        margin-right: 0;
        text-align: center;
    }
}

/*End navbar*/
.custom-navbar, .hero-section, .hero-section::before {
    background-image: url('../Image/new/Layer\ 6593.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}
/*start  hero*/
.hero-section {
    height: calc(100vh - 30px - 26vh); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}
.text-container {
    z-index: 1;
    position: relative;
    width: 50%; 
}

.hero-section .text-container h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2; 
}
@media (max-width: 768px) {
    .text-container {
        width: 100%; 
        text-align: center; 
    }
    
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 8px 16px;
    }
}
/*End  hero*/
/*start statistics*/
.statistics .container {
    max-width: 1140px;
    margin: 6% auto;
}

.statistics .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:-20px auto 40px auto;
    width: 100%;
}
.statistics  p {
    padding: 4px;
    text-align: left;
    line-height: 1.3;
    margin: 0;
    font-size: 16px;
}
.statistics .col-md-3 {
    text-align: center;
    position: relative;
}

/*End statistics*/
/*contact section*/
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.left-side, .right-side {
    flex: 1;
}

.left-side {
    max-width: 45%;
}

.left-side h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.left-side p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0056b3;
}
/* Right side styles */
.right-side {
    max-width: 45%;
}

.right-side img.logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.right-side p {
    font-size: 16px;
    margin-bottom: 10px;
}

.map {
    margin-top: 20px;
}
.map iframe {
    width: 260px;
    height: 260px;
}
@media (max-width: 768px) {
    .map iframe{
        width: 140px;
        height: 200px;
    }
}
/*floating-social-media section*/
.floating-social-media {
    position: fixed; 
    top: 60%; 
    right: 2%; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
    z-index: 1000;
}

.floating-social-media .social-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; 
    height: 40px; 
    background-color: var(--blue-color); 
    color: #fff; 
    border-radius: 50%; 
    text-decoration: none; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.floating-social-media .social-icon:hover {
    background-color: var(--green-color); 
    transform: scale(1.1);
}

.floating-social-media .social-icon i {
    font-size: 18px;
}

.floating-social-media .social-icon::after {
    content: attr(data-name);
    position: absolute;
    right: 50px;
    white-space: nowrap;
    background-color: var(--blue-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.floating-social-media .social-icon:hover::after {
    opacity: 1;
}
/**/
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    font-family: 'Arial', sans-serif;
}

.footer h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002244;
}

.footer nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 18px;
}

.footer a {
    color: var(--blue-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color:var(--green-color);
}

.footer p {
    margin-top: 20px;
    font-size: 14px;
    color: #002244;
}
.footer .container {
    max-width: 1140px;
    margin: 0 auto;
}